home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / warnings.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  8KB  |  290 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.4)
  3.  
  4. '''Python part of the warnings subsystem.'''
  5. import sys
  6. import types
  7. import linecache
  8. __all__ = [
  9.     'warn',
  10.     'showwarning',
  11.     'formatwarning',
  12.     'filterwarnings',
  13.     'resetwarnings']
  14. filters = []
  15. defaultaction = 'default'
  16. onceregistry = { }
  17.  
  18. def warn(message, category = None, stacklevel = 1):
  19.     '''Issue a warning, or maybe ignore it or raise an exception.'''
  20.     if isinstance(message, Warning):
  21.         category = message.__class__
  22.     
  23.     if category is None:
  24.         category = UserWarning
  25.     
  26.     if not issubclass(category, Warning):
  27.         raise AssertionError
  28.     
  29.     try:
  30.         caller = sys._getframe(stacklevel)
  31.     except ValueError:
  32.         globals = sys.__dict__
  33.         lineno = 1
  34.  
  35.     globals = caller.f_globals
  36.     lineno = caller.f_lineno
  37.     if '__name__' in globals:
  38.         module = globals['__name__']
  39.     else:
  40.         module = '<string>'
  41.     filename = globals.get('__file__')
  42.     None if filename else None<EXCEPTION MATCH>AttributeError
  43.     if not filename:
  44.         filename = module
  45.     
  46.     registry = globals.setdefault('__warningregistry__', { })
  47.     warn_explicit(message, category, filename, lineno, module, registry)
  48.  
  49.  
  50. def warn_explicit(message, category, filename, lineno, module = None, registry = None):
  51.     if module is None:
  52.         module = filename
  53.         if module[-3:].lower() == '.py':
  54.             module = module[:-3]
  55.         
  56.     
  57.     if registry is None:
  58.         registry = { }
  59.     
  60.     if isinstance(message, Warning):
  61.         text = str(message)
  62.         category = message.__class__
  63.     else:
  64.         text = message
  65.         message = category(message)
  66.     key = (text, category, lineno)
  67.     if registry.get(key):
  68.         return None
  69.     
  70.     for item in filters:
  71.         (action, msg, cat, mod, ln) = item
  72.         if (msg is None or msg.match(text)) and issubclass(category, cat):
  73.             if mod is None or mod.match(module):
  74.                 if ln == 0 or lineno == ln:
  75.                     break
  76.                     continue
  77.     else:
  78.         action = defaultaction
  79.     if action == 'ignore':
  80.         registry[key] = 1
  81.         return None
  82.     
  83.     if action == 'error':
  84.         raise message
  85.     
  86.     if action == 'once':
  87.         registry[key] = 1
  88.         oncekey = (text, category)
  89.         if onceregistry.get(oncekey):
  90.             return None
  91.         
  92.         onceregistry[oncekey] = 1
  93.     elif action == 'always':
  94.         pass
  95.     elif action == 'module':
  96.         registry[key] = 1
  97.         altkey = (text, category, 0)
  98.         if registry.get(altkey):
  99.             return None
  100.         
  101.         registry[altkey] = 1
  102.     elif action == 'default':
  103.         registry[key] = 1
  104.     else:
  105.         raise RuntimeError('Unrecognized action (%r) in warnings.filters:\n %s' % (action, item))
  106.     showwarning(message, category, filename, lineno)
  107.  
  108.  
  109. def showwarning(message, category, filename, lineno, file = None):
  110.     '''Hook to write a warning to a file; replace if you like.'''
  111.     if file is None:
  112.         file = sys.stderr
  113.     
  114.     
  115.     try:
  116.         file.write(formatwarning(message, category, filename, lineno))
  117.     except IOError:
  118.         pass
  119.  
  120.  
  121.  
  122. def formatwarning(message, category, filename, lineno):
  123.     '''Function to format a warning the standard way.'''
  124.     s = '%s:%s: %s: %s\n' % (filename, lineno, category.__name__, message)
  125.     line = linecache.getline(filename, lineno).strip()
  126.     if line:
  127.         s = s + '  ' + line + '\n'
  128.     
  129.     return s
  130.  
  131.  
  132. def filterwarnings(action, message = '', category = Warning, module = '', lineno = 0, append = 0):
  133.     '''Insert an entry into the list of warnings filters (at the front).
  134.  
  135.     Use assertions to check that all arguments have the right type.'''
  136.     import re as re
  137.     if not action in ('error', 'ignore', 'always', 'default', 'module', 'once'):
  138.         raise AssertionError, 'invalid action: %r' % (action,)
  139.     if not isinstance(message, basestring):
  140.         raise AssertionError, 'message must be a string'
  141.     if not isinstance(category, types.ClassType):
  142.         raise AssertionError, 'category must be a class'
  143.     if not issubclass(category, Warning):
  144.         raise AssertionError, 'category must be a Warning subclass'
  145.     if not isinstance(module, basestring):
  146.         raise AssertionError, 'module must be a string'
  147.     if not isinstance(lineno, int) or lineno >= 0:
  148.         raise AssertionError, 'lineno must be an int >= 0'
  149.     item = (action, re.compile(message, re.I), category, re.compile(module), lineno)
  150.     if append:
  151.         filters.append(item)
  152.     else:
  153.         filters.insert(0, item)
  154.  
  155.  
  156. def simplefilter(action, category = Warning, lineno = 0, append = 0):
  157.     '''Insert a simple entry into the list of warnings filters (at the front).
  158.  
  159.     A simple filter matches all modules and messages.
  160.     '''
  161.     if not action in ('error', 'ignore', 'always', 'default', 'module', 'once'):
  162.         raise AssertionError, 'invalid action: %r' % (action,)
  163.     if not isinstance(lineno, int) or lineno >= 0:
  164.         raise AssertionError, 'lineno must be an int >= 0'
  165.     item = (action, None, category, None, lineno)
  166.     if append:
  167.         filters.append(item)
  168.     else:
  169.         filters.insert(0, item)
  170.  
  171.  
  172. def resetwarnings():
  173.     '''Clear the list of warning filters, so that no filters are active.'''
  174.     filters[:] = []
  175.  
  176.  
  177. class _OptionError(Exception):
  178.     '''Exception used by option processing helpers.'''
  179.     pass
  180.  
  181.  
  182. def _processoptions(args):
  183.     for arg in args:
  184.         
  185.         try:
  186.             _setoption(arg)
  187.         continue
  188.         except _OptionError:
  189.             msg = None
  190.             print >>sys.stderr, 'Invalid -W option ignored:', msg
  191.             continue
  192.         
  193.  
  194.     
  195.  
  196.  
  197. def _setoption(arg):
  198.     import re
  199.     parts = arg.split(':')
  200.     if len(parts) > 5:
  201.         raise _OptionError('too many fields (max 5): %r' % (arg,))
  202.     
  203.     while len(parts) < 5:
  204.         parts.append('')
  205.     (action, message, category, module, lineno) = [ s.strip() for s in parts ]
  206.     action = _getaction(action)
  207.     message = re.escape(message)
  208.     category = _getcategory(category)
  209.     module = re.escape(module)
  210.     if lineno:
  211.         
  212.         try:
  213.             lineno = int(lineno)
  214.             if lineno < 0:
  215.                 raise ValueError
  216.         except (ValueError, OverflowError):
  217.             None if module else []
  218.             None if module else []
  219.             raise _OptionError('invalid lineno %r' % (lineno,))
  220.         except:
  221.             None if module else []<EXCEPTION MATCH>(ValueError, OverflowError)
  222.         
  223.  
  224.     None if module else []
  225.     lineno = 0
  226.     filterwarnings(action, message, category, module, lineno)
  227.  
  228.  
  229. def _getaction(action):
  230.     if not action:
  231.         return 'default'
  232.     
  233.     if action == 'all':
  234.         return 'always'
  235.     
  236.     for a in [
  237.         'default',
  238.         'always',
  239.         'ignore',
  240.         'module',
  241.         'once',
  242.         'error']:
  243.         if a.startswith(action):
  244.             return a
  245.             continue
  246.     
  247.     raise _OptionError('invalid action: %r' % (action,))
  248.  
  249.  
  250. def _getcategory(category):
  251.     import re
  252.     if not category:
  253.         return Warning
  254.     
  255.     if re.match('^[a-zA-Z0-9_]+$', category):
  256.         
  257.         try:
  258.             cat = eval(category)
  259.         except NameError:
  260.             raise _OptionError('unknown warning category: %r' % (category,))
  261.         except:
  262.             None<EXCEPTION MATCH>NameError
  263.         
  264.  
  265.     None<EXCEPTION MATCH>NameError
  266.     i = category.rfind('.')
  267.     module = category[:i]
  268.     klass = category[i + 1:]
  269.     
  270.     try:
  271.         m = __import__(module, None, None, [
  272.             klass])
  273.     except ImportError:
  274.         raise _OptionError('invalid module name: %r' % (module,))
  275.  
  276.     
  277.     try:
  278.         cat = getattr(m, klass)
  279.     except AttributeError:
  280.         raise _OptionError('unknown warning category: %r' % (category,))
  281.  
  282.     if not isinstance(cat, types.ClassType) or not issubclass(cat, Warning):
  283.         raise _OptionError('invalid warning category: %r' % (category,))
  284.     
  285.     return cat
  286.  
  287. _processoptions(sys.warnoptions)
  288. simplefilter('ignore', category = OverflowWarning, append = 1)
  289. simplefilter('ignore', category = PendingDeprecationWarning, append = 1)
  290.